home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / graphics / ascdraw.lzh / ASCDRAW / UTILS / UTILS.TXT < prev   
Text File  |  1994-01-14  |  1KB  |  35 lines

  1.  
  2. If you install ansifont in your system you may look at the ansidraw
  3. 'pics' with the normal desktop show function.
  4.  
  5. ST_font.acc is provided for font installation (I don't know who has
  6. done this utility, but many thanks to him anyway!).
  7.  
  8.  
  9. There are also four 'quick and dirty' (refers to a style I programmed
  10. them in...) *hi-rez* programs to assist you:
  11.  
  12. Font.prg:
  13. Installs a hi-rez ansifont for TOS. If run from Mint, Mint will bomb
  14. on exit (can't free mallocated memory?). Here's how it's done in GFA:
  15.         ' any normal systemfont goes.
  16.         INLINE new.font%,4096
  17.         adr%=L~A-22
  18.         normal.font%={adr%}             ! address of current font
  19.         SLPOKE adr%,new.font%           ! change font
  20.         PRINT "This is new font."
  21.         SLPOKE adr%,normal.font%        ! back to normal
  22.  
  23. To_ansi.prg:
  24. Converts an unpacked degaspicture (pi3) to ansi-raster-characters.
  25. Don't expect too much from it.
  26.  
  27. Put_font.prg:
  28. Reads a selected font file (2048k for med-rez, 4096 for hi-rez) and
  29. saves a degas picture of them. You can edit picture with any drawing
  30. program, if you don't change characters position.
  31.  
  32. Get_font.prg:
  33. Reads a degaspicture of a font and saves it as a font file.
  34.  
  35.